From e353d4d94ccc64e4121086508c692fed19fd48f6 Mon Sep 17 00:00:00 2001 From: Magnus Manske Date: Wed, 22 Feb 2006 08:37:14 +0000 Subject: [PATCH] "table with no data" fix --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Parser.php b/includes/Parser.php index 829a7b342a..47644b8a89 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -796,7 +796,7 @@ class Parser $l = array_pop ( $ltd ) ; if ( array_pop ( $td ) ) $t[] = '' ; if ( array_pop ( $tr ) ) $t[] = '' ; - if ( array_pop ( $has_opened_tr ) ) $t[] = "" ; + if ( !array_pop ( $has_opened_tr ) ) $t[] = "" ; $t[] = '' ; } -- 2.20.1